home *** CD-ROM | disk | FTP | other *** search
/ Animation / Animation Vol.1 (Profi ROM)(1994).iso / samples.zip / DIAMMTL.INC < prev    next >
Text File  |  1993-10-02  |  590b  |  33 lines

  1. // POV-Ray 2.0 material definitions for diam.3ds
  2.  
  3. #max_trace_level 10
  4.  
  5. #declare SKY = texture {
  6.     finish {
  7.         ambient 0.0
  8.         diffuse 0.9
  9.     }
  10.     pigment { rgb <0.5, 0.5, 0.5> }
  11. }
  12.  
  13. #declare FLOOR = texture {
  14.     finish {
  15.         ambient 0.0
  16.         diffuse 0.9
  17.         reflection 0.4
  18.     }
  19.     pigment { rgb <0.5, 0.5, 0.5> }
  20. }
  21.  
  22. #declare DIAMOND = texture {
  23.     finish {
  24.         ambient 0.1
  25.         diffuse 0.9
  26.         phong 1.00
  27.         phong_size 25
  28.         ior 2.6
  29.         refraction 1.0
  30.     }
  31.     pigment { rgbf <0.95, 0.95, 0.98, 0.95> }
  32. }
  33.